home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Full / NetObjects Fusion 9 Standard / NOF9_Full_EN.exe / data1.cab / FSI / Ecomm / lib / App.js next >
Encoding:
Text File  |  2005-11-16  |  1.0 KB  |  48 lines

  1. /****i* SOURCE_FILE/INFO
  2.     *
  3.     * NAME
  4.     *  App.js
  5.     *
  6.     * USAGE
  7.     *  Part of Netobjects JavaScript Library.
  8.     *
  9.     * COPYRIGHT
  10.     *  Copyright ⌐ 2000-2005 Website Pros, Inc.
  11.     *  All Rights Reserved.
  12.     *
  13.     *  This is an unpublished work protected by Website Pros, Inc.
  14.     *  as a trade secret, and is not to be used or disclosed except as
  15.     *  expressly provided in a written license agreement executed by
  16.     *  you and Website Pros, Inc.
  17.     *
  18.     *      <copyright@websitepros.com>
  19.     *
  20.     * NOTES
  21.     *  JavaScript code.
  22.     *
  23.     *****/
  24. //if (!IS.isModuleInitialized("IS.NOF.ecomm.App"))
  25. {
  26.     /****h* NOF_JavaScript_Library/NOF.ecomm.App
  27.     *
  28.     * NAME
  29.     *  NOF.ecomm.App
  30.     *
  31.     * DESCRIPTION
  32.     *   Ecomm html application class.
  33.     *
  34.     ****/
  35.     /*
  36.     * constructor
  37.     * @param _name
  38.     */
  39.     function NOF_Ecomm_App( _name ){
  40.         this.__proto__  = NOF_Ecomm_App.prototype;
  41.         this.SUPER( _name, "Ecomm/properties/ecomm" );
  42.     }
  43.     
  44.     NOF_Ecomm_App.inherits( NOF.HTML.App );
  45.     //NOF.ecomm.__proto__.App = NOF_Ecomm_App;
  46.     
  47.     //alert("ecommApp \n" + NOF.ecomm.App);
  48. }